home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / text / hyper / hsc_source.lha / hsc / source / hsclib / parse.h < prev    next >
C/C++ Source or Header  |  1996-04-13  |  565b  |  29 lines

  1. /*
  2. ** hsclib/parse.h
  3. **
  4. ** functions for parsing of hsc files
  5. **
  6. */
  7.  
  8. #ifndef HSC_PARSE_H
  9. #define HSC_PARSE_H
  10.  
  11. /*
  12. ** global funcs
  13. */
  14. #ifndef NOEXTERN_HSCLIB_PARSE_H
  15.  
  16. extern BOOL hsc_parse( HSCPRC *hp );
  17. extern BOOL hsc_parse_tag( HSCPRC *hp );
  18. extern BOOL hsc_parse_amp( HSCPRC *hp );
  19. extern BOOL hsc_parse_text( HSCPRC *hp );
  20. extern BOOL hsc_parse_source( HSCPRC *hp );
  21. extern BOOL hsc_parse_end( HSCPRC *hp );
  22. extern BOOL hsc_parse_end_id( HSCPRC *hp );
  23.  
  24. extern VOID remove_ctag( HSCPRC *hp, HSCTAG *tag );
  25.  
  26. #endif /* NOEXTERN_PARSE_H */
  27. #endif /* HSC_PARSE_H */
  28.  
  29.